Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
curl --request POST \
--url https://api.tagdeliver.com/v1/tag \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"dupe_configs": true,
"dupe_from": 123,
"targets": [
{
"domain": "<string>",
"label": "<string>"
}
]
}'{
"uids": [
{
"uid": 18984,
"domain": "test.jamiedruce.io",
"label": "",
"display_name": null
}
],
"success": true
}Creates a new publisher from the given domain
curl --request POST \
--url https://api.tagdeliver.com/v1/tag \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"dupe_configs": true,
"dupe_from": 123,
"targets": [
{
"domain": "<string>",
"label": "<string>"
}
]
}'{
"uids": [
{
"uid": 18984,
"domain": "test.jamiedruce.io",
"label": "",
"display_name": null
}
],
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?